home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CICA Windows Explosion!
/
The CICA Windows Explosion! - Disc 2.iso
/
programr
/
ptrp25dm.zip
/
ETEST9.TRP
< prev
next >
Wrap
Text File
|
1995-03-17
|
293b
|
15 lines
procedure main
var
a1 : array[1 .. 9] of byte;
i : byte;
endVar
for i := 1 to 9
a1[i] := i * i;
endFor
i := 9
while (i > 0)
writeln(i, ' ', a1[i]);
dec(i);
endWhile
endProc